:root {
    --purple: #5b2688;
    --purple-dark: #35145e;
    --purple-soft: #f2edf8;
    --ink: #12152a;
    --muted: #4f5265;
    --soft: #faf9fc;
    --line: #e9e5f0;
    --white: #fff;
    --shadow: 0 18px 42px rgba(29, 20, 55, 0.09);
    --shadow-hover: 0 24px 56px rgba(42, 19, 74, 0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Manrope, Arial, sans-serif; color: var(--ink); background: radial-gradient(circle at 6% 0%, rgba(91,38,136,0.05), transparent 28%), var(--white); line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(100% - 72px, 1280px); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.84); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(91,38,136,0.08); transition: box-shadow .35s ease, background .35s ease; }
.site-header.header--scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 14px 38px rgba(27, 15, 48, 0.08); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 270px; color: var(--purple); }
.brand-mark { width: 82px; height: 50px; display: grid; place-items: center; padding: 8px; border-radius: 16px; background: linear-gradient(145deg, #fff, #f5effa); box-shadow: inset 0 0 0 1px rgba(91,38,136,.08), 0 14px 30px rgba(91,38,136,.10); }
.brand-mark svg { fill: currentColor; stroke: none; filter: drop-shadow(0 5px 8px rgba(91,38,136,.16)); }
.brand-copy strong { display: block; font-size: 16px; font-weight: 800; line-height: 1; letter-spacing: -0.2px; }
.brand-copy small { display: block; font-size: 12px; font-weight: 700; line-height: 1.2; color: #6d4d8c; }
.nav { display: flex; align-items: center; justify-content: center; gap: 36px; flex: 1; }
.nav__link { font-size: 13px; font-weight: 800; color: #131529; white-space: nowrap; position: relative; padding: 8px 0; }
.nav__link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--purple); border-radius: 9px; transform: scaleX(0); transition: transform .28s ease; transform-origin: center; }
.nav__link:hover, .nav__link--active { color: var(--purple); }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.quote-pill { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; color: white; background: linear-gradient(135deg, #6a3199, #4a1d75); border-radius: 20px; font-size: 12px; font-weight: 800; box-shadow: 0 16px 34px rgba(72, 25, 113, 0.24); white-space: nowrap; transition: transform .28s ease, box-shadow .28s ease; }
.quote-pill:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(72, 25, 113, 0.28); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--purple-dark); }
.hero { padding: 30px 0 0; min-height: 500px; background: #fff; }
.hero-grid { display: grid; grid-template-columns: 0.93fr 1.07fr; gap: 48px; align-items: start; }
.hero-copy { padding-top: 58px; }
.eyebrow { color: var(--purple); font-weight: 800; font-size: 18px; margin-bottom: 14px; }
.eyebrow.small { font-size: 12px; letter-spacing: 1.4px; }
.hero h1 { font-size: clamp(38px, 4.05vw, 52px); line-height: 1.12; letter-spacing: -1.1px; font-weight: 800; margin-bottom: 24px; }
.hero h1 span { color: var(--purple); }
.hero-text { max-width: 500px; color: #272b42; font-size: 16px; line-height: 1.75; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 28px; margin-bottom: 42px; flex-wrap: wrap; }
.btn { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 30px; border-radius: 8px; font-size: 13px; font-weight: 800; border: 1.5px solid var(--purple); white-space: nowrap; transition: transform .28s ease, box-shadow .28s ease, background .28s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #642a91, #4e1f78); color: white; box-shadow: 0 14px 24px rgba(63, 27, 95, 0.18); }
.btn-primary:hover { box-shadow: 0 20px 36px rgba(63, 27, 95, 0.24); }
.btn-outline { color: var(--purple); background: rgba(255,255,255,.86); }
.btn-outline:hover { background: var(--purple-soft); }
.btn.compact { min-height: 48px; padding: 0 22px; }
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; max-width: 620px; }
.mini-stats div { display: grid; grid-template-columns: 34px auto; column-gap: 10px; align-items: center; }
.line-icon { grid-row: span 2; width: 30px; height: 30px; color: var(--purple); }
.mini-stats strong { font-size: 17px; font-weight: 800; line-height: 1; }
.mini-stats small { font-size: 10px; font-weight: 700; color: #4c4c60; }
.hero-art { justify-self: end; width: min(100%, 682px); margin-right: -36px; overflow: visible; box-shadow: none; border-radius: 0; }
.hero-art img { width: 100%; height: auto; max-height: 520px; object-fit: contain; object-position: right center; transition: none; }

.section-soft { background: linear-gradient(180deg, #fbfbfd 0%, #f7f7fb 100%); }
.categories { padding: 56px 0 46px; }
.section-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
h2 { font-size: 23px; line-height: 1.2; color: #20233b; font-weight: 800; letter-spacing: -0.3px; }
h2 span, .brands h2 span, .solution-copy h2 span { color: var(--purple); }
.section-row a { color: var(--purple); font-size: 13px; font-weight: 800; display: inline-flex; gap: 20px; }
.section-center { text-align: center; max-width: 660px; margin: 0 auto 32px; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.category-card { height: 174px; padding: 16px 12px 20px; background: rgba(255,255,255,.92); border: 1px solid rgba(91,38,136,.06); border-radius: 10px; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: space-between; transition: transform .28s ease, box-shadow .28s ease; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.category-image { height: 106px; display: grid; place-items: center; }
.category-image img { max-height: 98px; object-fit: contain; transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card h3 { min-height: 36px; text-align: center; font-size: 11px; line-height: 1.25; font-weight: 800; color: #1f233b; }
.about-section { padding: 72px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.about-copy h2 { font-size: clamp(30px, 3vw, 44px); max-width: 720px; margin-bottom: 22px; }
.about-copy p { color: #3a3d51; font-size: 15px; line-height: 1.85; margin-bottom: 16px; max-width: 760px; }
.about-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.about-badges span { padding: 10px 14px; background: var(--purple-soft); color: var(--purple-dark); border-radius: 999px; font-size: 12px; font-weight: 800; }
.about-card { min-height: 330px; padding: 34px; border-radius: 18px; background: linear-gradient(145deg, #fff, #f7f2fb); border: 1px solid rgba(91,38,136,.09); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; inset: 0 0 auto auto; width: 170px; height: 170px; background: radial-gradient(circle, rgba(91,38,136,.13), transparent 68%); }
.about-card__icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--purple); margin-bottom: 26px; }
.about-card h3 { font-size: 24px; margin-bottom: 12px; }
.about-card p { color: #42455a; font-size: 14px; line-height: 1.8; }
.about-score { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(91,38,136,.14); }
.about-score strong { display: block; color: var(--purple); font-size: 42px; line-height: 1; }
.about-score small { color: #4f5265; font-weight: 700; }
.solutions { padding: 58px 0 26px; background: #fbfbfd; }
.solutions-grid { display: grid; grid-template-columns: 330px 1fr; gap: 70px; align-items: center; }
.solution-copy p { margin: 26px 0 28px; color: #303348; line-height: 1.85; font-size: 14px; }
.service-panel { min-height: 186px; background: rgba(255,255,255,.92); border: 1px solid rgba(91,38,136,.06); border-radius: 14px; box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 32px 28px; }
.service-panel article { text-align: center; padding: 0 24px; border-left: 1px solid #d8d1e2; transition: transform .28s ease; }
.service-panel article:hover { transform: translateY(-4px); }
.service-panel article:first-child { border-left: 0; }
.service-panel span { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--purple); display: block; }
.service-panel h3 { font-size: 13px; margin-bottom: 14px; font-weight: 800; }
.service-panel p { font-size: 11px; line-height: 1.7; color: #404358; }
.wide-stats { padding: 10px 0 48px; background: #fbfbfd; }
.stats-band { min-height: 128px; display: grid; grid-template-columns: 210px repeat(4, 1fr); align-items: center; background: linear-gradient(90deg, #fbfaff, #f3f0f8); border-radius: 12px; padding: 20px 26px; box-shadow: 0 10px 28px rgba(52, 34, 88, 0.04); }
.stats-band img { width: 130px; opacity: 0.75; }
.stats-band div { border-left: 1px solid #cfc8da; padding-left: 54px; min-height: 62px; display: flex; flex-direction: column; justify-content: center; }
.stats-band div:first-of-type { border-left: 0; }
.stats-band strong { color: var(--purple); font-size: 38px; line-height: 1; font-weight: 800; }
.stats-band small { margin-top: 12px; font-size: 12px; color: #33364d; }
.process { padding: 0 0 54px; background: #fbfbfd; }
.process h2 { margin-bottom: 30px; }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; position: relative; }
.process-line article { position: relative; min-height: 118px; padding-left: 58px; }
.process-line article:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: calc(100% - 35px); width: 130px; border-top: 1px dashed #bcb4c8; }
.process-line b { position: absolute; left: 0; top: 0; width: 48px; height: 48px; border: 1px solid #d5cede; border-radius: 50%; display: grid; place-items: center; color: var(--purple); font-size: 20px; background: #fff; }
.process-line span { width: 28px; height: 28px; color: var(--purple); display: block; margin-bottom: 26px; }
.process-line h3 { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.process-line p { font-size: 12px; line-height: 1.55; color: #33364b; }
.brands { padding: 32px 0 24px; border-top: 1px solid #dedbe6; border-bottom: 1px solid #ebe7f0; }
.brands h2 { margin-bottom: 28px; }
.brand-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.brand-logo { height: 52px; display: grid; place-items: center; background: white; border-radius: 8px; box-shadow: 0 8px 22px rgba(45, 30, 73, 0.05); color: #2a2c36; font-size: 16px; font-weight: 800; filter: grayscale(0.35); }
.brand-logo.red { color: #ef3026; font-size: 24px; }
.testimonials { padding: 72px 0; background: linear-gradient(180deg, #fff, #fbf9fd); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 28px; border-radius: 16px; background: #fff; border: 1px solid rgba(91,38,136,.08); box-shadow: var(--shadow); transition: transform .28s ease, box-shadow .28s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testimonial-card.featured { background: linear-gradient(145deg, #5b2688, #37145f); color: #fff; }
.testimonial-card p { color: #3c4054; line-height: 1.8; font-size: 14px; margin: 18px 0 24px; }
.testimonial-card.featured p, .testimonial-card.featured small { color: rgba(255,255,255,.82); }
.testimonial-card strong { display: block; font-size: 14px; }
.testimonial-card small { color: #66697b; font-size: 12px; }
.stars { color: #f1b844; letter-spacing: 2px; font-size: 13px; }
.faq { padding: 72px 0; }
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 70px; }
.faq-intro { margin-top: 16px; color: #515467; font-size: 14px; line-height: 1.8; }
.faq-list { display: grid; gap: 14px; }
details { background: #fff; border: 1px solid rgba(91,38,136,.09); border-radius: 14px; box-shadow: 0 10px 24px rgba(29,20,55,.05); overflow: hidden; }
summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 800; color: #1d2035; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 24px; top: 18px; color: var(--purple); font-size: 24px; line-height: 1; transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 24px 22px; color: #4c5064; font-size: 14px; line-height: 1.8; }
.cta { padding: 18px 0 0; background: #fbfbfd; overflow: hidden; }
.cta-inner { min-height: 140px; display: grid; grid-template-columns: 1fr 520px; gap: 20px; align-items: end; }
.cta h2 { color: var(--purple); margin-bottom: 10px; }
.cta p { max-width: 450px; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: #2f3246; }
.cta .btn { min-height: 45px; padding: 0 26px; }
.cta img { align-self: end; justify-self: end; width: 500px; }
.footer { background: radial-gradient(circle at 20% 0%, #533078, #2d174d 62%); color: white; padding: 28px 0 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.75fr 0.85fr 1fr 1.35fr; gap: 44px; align-items: start; }
.footer .brand { min-width: 0; color: white; margin-bottom: 18px; }
.footer .brand-mark { width: 70px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.footer .brand-copy strong { color: white; font-size: 13px; }
.footer .brand-copy small { color: rgba(255,255,255,0.78); }
.footer p, .footer a { display: block; color: rgba(255,255,255,0.86); font-size: 12px; line-height: 1.9; }
.footer h3 { color: white; font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.socials { display: flex; gap: 22px; margin-top: 18px; }
.socials a { font-weight: 800; font-size: 18px; }
.copyright { text-align: center; margin-top: 8px; color: rgba(255,255,255,0.74) !important; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 1353px) { .hero-art { margin-right: calc((100vw - 1280px) / -2); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1100px) { .container { width: min(100% - 38px, 980px); } .nav { gap: 18px; } .brand { min-width: 235px; } .hero-grid, .solutions-grid, .cta-inner, .about-grid, .faq-grid { grid-template-columns: 1fr; } .hero-copy { padding-top: 34px; } .hero-art { justify-self: stretch; width: 100%; margin-right: 0; border-radius: 0; } .hero-art img { max-height: 560px; height: auto; } .category-grid { grid-template-columns: repeat(3, 1fr); } .stats-band { grid-template-columns: repeat(4, 1fr); } .stats-band img { display: none; } .stats-band div { padding-left: 28px; } .brand-grid { grid-template-columns: repeat(4, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } .testimonial-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .header-inner { height: 72px; } .brand { min-width: 0; } .brand-mark { width: 56px; height: 44px; padding: 7px; } .brand-copy strong { font-size: 12px; } .quote-pill { display: none; } .menu-toggle { display: block; } .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 18px 28px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; } .nav.nav--open { display: flex; } .hero { padding-top: 8px; min-height: auto; } .hero h1 { font-size: 38px; } .hero-actions, .mini-stats { gap: 14px; } .mini-stats { grid-template-columns: repeat(2, 1fr); } .hero-art img { max-height: 420px; height: auto; } .section-row { align-items: flex-start; gap: 12px; flex-direction: column; } .category-grid, .service-panel, .process-line, .brand-grid { grid-template-columns: repeat(2, 1fr); } .service-panel article { border-left: 0; padding: 18px 10px; } .stats-band { grid-template-columns: repeat(2, 1fr); gap: 18px; } .stats-band div { border-left: 0; padding-left: 0; } .process-line article:not(:last-child)::after { display: none; } .cta img { width: 100%; } .footer-grid { grid-template-columns: 1fr; gap: 24px; } .about-section, .testimonials, .faq { padding: 52px 0; } }
@media (max-width: 480px) { .container { width: min(100% - 28px, 420px); } .brand-copy { display: none; } .hero h1 { font-size: 31px; letter-spacing: -0.7px; } .eyebrow { font-size: 14px; } .hero-text { font-size: 14px; } .btn { width: 100%; } .category-grid, .service-panel, .process-line, .brand-grid, .stats-band { grid-template-columns: 1fr; } .about-card, .testimonial-card { padding: 24px; } }




/* Full-width premium hero */
.hero.hero--wide {
    position: relative;
    min-height: 620px;
    padding: 92px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    background: #eef5fb;
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
    isolation: isolate;
}
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
    overflow: hidden;
}
.hero-bg { z-index: -2; }
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: saturate(.95) contrast(.96);
}
.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(238,245,251,.86) 0%, rgba(238,245,251,.62) 42%, rgba(238,245,251,.22) 100%),
        linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,0) 28%, rgba(255,255,255,.20));
}
.hero-content {
    text-align: center;
    max-width: 880px;
    padding-top: 22px;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(27, 15, 48, .08);
}
.hero.hero--wide h1 {
    max-width: 900px;
    margin: 0 auto 14px;
    font-size: clamp(40px, 4.4vw, 66px);
    line-height: 1.05;
    letter-spacing: -1.7px;
    color: #10142a;
}
.hero.hero--wide h1 span { color: var(--purple); }
.hero.hero--wide .hero-text {
    max-width: 720px;
    margin: 0 auto 26px;
    color: #20243a;
    font-size: 15px;
    line-height: 1.65;
}
.hero.hero--wide .hero-actions {
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}
.hero.hero--wide .btn {
    min-height: 48px;
    border-radius: 999px;
    padding: 0 28px;
}
.hero.hero--wide .hero-secondary {
    color: #10142a;
    border-color: #10142a;
    background: rgba(255,255,255,.36);
    backdrop-filter: blur(8px);
}
.hero-stat-card {
    position: absolute;
    left: 50%;
    bottom: -44px;
    transform: translateX(-50%);
    width: min(100% - 72px, 680px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(91,38,136,.08);
    border-radius: 10px;
    box-shadow: 0 22px 52px rgba(28, 17, 47, .16);
    overflow: hidden;
    backdrop-filter: blur(16px);
}
.hero-stat-card div {
    min-height: 92px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    border-left: 1px solid rgba(91,38,136,.12);
}
.hero-stat-card div:first-child { border-left: 0; }
.hero-stat-card strong {
    color: var(--purple);
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    -webkit-text-stroke: .4px rgba(91,38,136,.2);
}
.hero-stat-card small {
    color: #3c4054;
    font-size: 12px;
    font-weight: 700;
}
.categories.section-soft { padding-top: 94px; }
@media (max-width: 1100px) {
    .hero.hero--wide { min-height: 590px; padding-top: 74px; border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; }
    .hero-bg, .hero-overlay { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; }
    .hero-stat-card { width: min(100% - 38px, 680px); }
}
@media (max-width: 760px) {
    .hero.hero--wide { min-height: 640px; padding-top: 56px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
    .hero-bg, .hero-overlay { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
    .hero-bg img { object-position: center bottom; }
    .hero-overlay { background: linear-gradient(180deg, rgba(238,245,251,.94) 0%, rgba(238,245,251,.78) 50%, rgba(238,245,251,.36) 100%); }
    .hero.hero--wide h1 { font-size: 38px; letter-spacing: -1px; }
    .hero.hero--wide .hero-text { font-size: 14px; }
    .hero-stat-card { bottom: -82px; grid-template-columns: repeat(2, 1fr); }
    .hero-stat-card div { min-height: 78px; }
    .categories.section-soft { padding-top: 128px; }
}
@media (max-width: 480px) {
    .hero.hero--wide { min-height: 680px; }
    .hero.hero--wide h1 { font-size: 32px; }
    .hero.hero--wide .hero-actions .btn { width: auto; min-width: 170px; }
    .hero-stat-card { width: min(100% - 28px, 420px); }
    .hero-stat-card strong { font-size: 28px; }
}

/* Reference-style About section — spacing/sizing revised for better breathing room */
.about-modern {
    padding: 112px 0 88px;
    background: #fff;
}
.about-modern__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 48px;
}
.about-modern__top h2 {
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    color: #07142b;
}
.about-modern__btn {
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    flex-shrink: 0;
}
.about-modern__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.about-modern__left {
    display: grid;
    gap: 44px;
}
.about-modern__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}
.about-modern__image--tall {
    height: 340px;
}
.partner-block h3 {
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
    color: #07142b;
}
.customer-row {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 14px;
}
.customer-row strong {
    color: #ff7a1a;
    font-size: 26px;
    line-height: 1;
    -webkit-text-stroke: .35px rgba(255,122,26,.4);
}
.customer-row small {
    grid-column: 2;
    font-size: 12px;
    color: #111827;
}
.avatar-stack {
    grid-row: span 2;
    display: flex;
    align-items: center;
    padding-left: 2px;
}
.avatar-stack span,
.avatar-stack b {
    width: 32px;
    height: 32px;
    margin-left: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #f59e0b);
    box-shadow: 0 6px 14px rgba(15,23,42,.16);
}
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #155e75, #22c55e); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #581c87, #fb7185); }
.avatar-stack b {
    display: grid;
    place-items: center;
    background: #ff7a1a;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}
.about-modern__right {
    display: grid;
    gap: 32px;
}
.about-modern__intro {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
.about-modern__copy h3 {
    max-width: 430px;
    margin-bottom: 16px;
    color: #07142b;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -0.6px;
}
.about-modern__copy p {
    max-width: 560px;
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.8;
}
.about-modern__copy ul {
    display: grid;
    gap: 12px;
}
.about-modern__copy li {
    list-style: none;
    position: relative;
    padding-left: 22px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.5;
}
.about-modern__copy li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 13px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}
.about-modern__statement {
    max-width: 650px;
    color: #4a4a4a;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding-top: 8px;
}
.about-modern__statement span {
    color: var(--purple);
}
.about-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.about-brand-grid div {
    min-height: 56px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f0f0f0;
    color: #8a8a8a;
    font-weight: 800;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.025);
}
.about-section:not(.about-modern) { display: none; }
.categories.section-soft { padding-top: 56px; }

@media (max-width: 980px) {
    .about-modern__grid,
    .about-modern__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-modern__image,
    .about-modern__image--tall {
        height: 280px;
    }
    .about-modern__right {
        gap: 28px;
    }
    .about-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .about-modern { padding: 96px 0 56px; }
    .about-modern__top {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 36px;
    }
    .about-modern__top h2 {
        font-size: 30px;
    }
    .about-modern__btn {
        width: auto;
    }
    .about-brand-grid {
        grid-template-columns: 1fr;
    }
}
/* Purple service-card section */
.solution-cards {
    padding: 72px 0;
    background: #f2f2f4;
}
.solution-card-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.6fr;
    gap: 14px;
    align-items: stretch;
}
.solution-feature-card,
.solution-mini-card {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(28, 17, 47, .10);
    transition: transform .28s ease, box-shadow .28s ease;
}
.solution-feature-card:hover,
.solution-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(28, 17, 47, .15);
}
.solution-feature-card {
    min-height: 345px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #d8cde6 0%, #ffffff 56%);
    color: #10142a;
}
.solution-feature-card .eyebrow {
    margin: 20px 20px 8px;
    color: var(--purple);
}
.solution-feature-card h2 {
    margin: 0 20px 10px;
    max-width: 260px;
    font-size: 22px;
    line-height: 1.05;
    color: #10142a;
}
.solution-feature-card p:not(.eyebrow) {
    margin: 0 20px 16px;
    max-width: 310px;
    color: #4b4f61;
    font-size: 12px;
    line-height: 1.6;
}
.solution-feature-card .btn {
    align-self: flex-start;
    min-height: 34px;
    margin: 0 20px 18px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 11px;
}
.solution-feature-card img {
    width: 100%;
    height: 138px;
    margin-top: auto;
    object-fit: cover;
}
.solution-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.solution-mini-card {
    min-height: 166px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 22px 18px;
    text-align: center;
    border: 1px solid rgba(91,38,136,.08);
}
.solution-mini-card.light {
    background: #fff;
    color: #10142a;
}
.solution-mini-card.dark {
    background: #16172b;
    color: #fff;
    border-color: #16172b;
}
.solution-mini-card span {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 12px;
    color: var(--purple);
}
.solution-mini-card.dark span {
    color: #caa8ee;
}
.solution-mini-card h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
}
.solution-mini-card p {
    max-width: 260px;
    margin-bottom: 12px;
    color: #565a6d;
    font-size: 11px;
    line-height: 1.55;
}
.solution-mini-card.dark p {
    color: rgba(255,255,255,.72);
}
.solution-mini-card a {
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
}
.solution-mini-card.dark a {
    color: #d7baf7;
}
@media (max-width: 900px) {
    .solution-card-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .solution-cards {
        padding: 52px 0;
    }
    .solution-mini-grid {
        grid-template-columns: 1fr;
    }
    .solution-feature-card h2 {
        max-width: none;
    }
}

/* Purple capability-card section */
.capability-cards {
    padding: 72px 0;
    background: #f2f2f4;
}
.capability-card-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.6fr;
    gap: 14px;
    align-items: stretch;
}
.capability-feature-card,
.capability-mini-card {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(28, 17, 47, .10);
    transition: transform .28s ease, box-shadow .28s ease;
}
.capability-feature-card:hover,
.capability-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(28, 17, 47, .15);
}
.capability-feature-card {
    min-height: 345px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #d8cde6 0%, #ffffff 56%);
    color: #10142a;
}
.capability-feature-card .eyebrow {
    margin: 20px 20px 8px;
    color: var(--purple);
}
.capability-feature-card h2 {
    margin: 0 20px 10px;
    max-width: 280px;
    font-size: 22px;
    line-height: 1.05;
    color: #10142a;
}
.capability-feature-card p:not(.eyebrow) {
    margin: 0 20px 16px;
    max-width: 310px;
    color: #4b4f61;
    font-size: 12px;
    line-height: 1.6;
}
.capability-feature-card .btn {
    align-self: flex-start;
    min-height: 34px;
    margin: 0 20px 18px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 11px;
}
.capability-feature-card img {
    width: 100%;
    height: 138px;
    margin-top: auto;
    object-fit: cover;
}
.capability-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.capability-mini-card {
    min-height: 166px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 22px 18px;
    text-align: center;
    border: 1px solid rgba(91,38,136,.08);
}
.capability-mini-card.light {
    background: #fff;
    color: #10142a;
}
.capability-mini-card.dark {
    background: #16172b;
    color: #fff;
    border-color: #16172b;
}
.capability-mini-card span {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 12px;
    color: var(--purple);
}
.capability-mini-card.dark span {
    color: #caa8ee;
}
.capability-mini-card h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
}
.capability-mini-card p {
    max-width: 260px;
    margin-bottom: 12px;
    color: #565a6d;
    font-size: 11px;
    line-height: 1.55;
}
.capability-mini-card.dark p {
    color: rgba(255,255,255,.72);
}
.capability-mini-card a {
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
}
.capability-mini-card.dark a {
    color: #d7baf7;
}
@media (max-width: 900px) {
    .capability-card-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .capability-cards {
        padding: 52px 0;
    }
    .capability-mini-grid {
        grid-template-columns: 1fr;
    }
    .capability-feature-card h2 {
        max-width: none;
    }
}

/* Why choose section */
.why-choose {
    position: relative;
    padding: 88px 0 74px;
    background: #fff;
    overflow: hidden;
}
.why-choose__header {
    max-width: 690px;
    text-align: center;
    margin: 0 auto 44px;
}
.why-choose__header .eyebrow {
    color: var(--purple);
    margin-bottom: 12px;
}
.why-choose__header h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #07142b;
    margin-bottom: 22px;
}
.why-choose__header p {
    color: #20243a;
    font-size: 16px;
    line-height: 1.65;
}
.why-choose__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 340px) minmax(300px, 0.9fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: center;
    width: min(100% - 120px, 1180px);
}
.why-choose__side {
    display: grid;
    gap: 0;
}
.why-feature {
    padding: 30px 0;
    border-bottom: 1px solid #d9d9dd;
}
.why-feature:last-child {
    border-bottom: 0;
}
.why-feature span {
    width: 42px;
    height: 42px;
    display: block;
    margin-bottom: 18px;
    color: var(--purple);
}
.why-feature h3 {
    margin-bottom: 12px;
    color: #07142b;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.7px;
}
.why-feature p {
    max-width: 360px;
    color: #333746;
    font-size: 16px;
    line-height: 1.55;
}
.why-choose__side--right .why-feature p {
    max-width: 360px;
}
.why-choose__image {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 590px;
    position: relative;
}
.why-choose__image::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 88%;
    height: 90px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 72%);
    pointer-events: none;
}
.why-choose__image img {
    width: min(100%, 330px);
    max-height: 620px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 28px rgba(15, 23, 42, .10));
}
@media (max-width: 1000px) {
    .why-choose__grid {
        width: min(100% - 56px, 920px);
        grid-template-columns: 1fr 250px 1fr;
        gap: 34px;
    }
    .why-feature h3 { font-size: 20px; }
    .why-feature p { font-size: 14px; }
}
@media (max-width: 760px) {
    .why-choose {
        padding: 58px 0;
    }
    .why-choose__grid {
        width: min(100% - 32px, 520px);
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .why-choose__image {
        order: -1;
        min-height: 420px;
    }
    .why-choose__image img {
        max-height: 430px;
    }
    .why-feature {
        padding: 24px 0;
    }
    .why-feature p {
        max-width: none;
    }
}


/* Modern testimonials layout */
.testimonials-modern {
    padding: 86px 0 70px;
    background: #fff;
}
.testimonials-modern__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 42px;
}
.testimonials-modern__head .eyebrow {
    color: var(--purple);
    margin-bottom: 16px;
}
.testimonials-modern__head h2 {
    max-width: 520px;
    color: #07142b;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}
.testimonials-modern__intro {
    display: grid;
    justify-items: end;
    gap: 26px;
    text-align: center;
}
.testimonials-modern__intro p {
    max-width: 610px;
    color: #111827;
    font-size: 17px;
    line-height: 1.45;
}
.testimonials-modern__intro .btn {
    min-width: 146px;
    min-height: 46px;
    border-radius: 999px;
}
.testimonials-modern__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 30px;
}
.review-card {
    position: relative;
    background: #efefef;
    border-radius: 12px;
    padding: 26px 24px;
    min-height: 288px;
    box-shadow: none;
}
.review-card--wide {
    grid-column: span 1;
    min-height: 263px;
    padding: 28px 26px;
}
.review-card:nth-last-child(2) {
    grid-column: 1 / span 1;
}
.review-card:last-child {
    grid-column: 2 / span 2;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 28px;
}
.quote-mark {
    position: absolute;
    top: 20px;
    right: 22px;
    color: var(--purple);
    font-family: Georgia, serif;
    font-size: 62px;
    line-height: .7;
    opacity: .85;
}
.testimonials-modern .stars {
    color: var(--purple);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-card h3 {
    color: #172033;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.review-card small {
    display: block;
    color: #4b4f5c;
    font-size: 13px;
    margin-bottom: 18px;
}
.review-card p {
    max-width: 470px;
    color: #444;
    font-size: 17px;
    line-height: 1.45;
}
.review-card--small p {
    max-width: 285px;
}
.testimonial-photo {
    min-height: 288px;
    border-radius: 12px;
    overflow: hidden;
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1000px) {
    .testimonials-modern__head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonials-modern__intro {
        justify-items: start;
        text-align: left;
    }
    .testimonials-modern__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-photo,
    .review-card:last-child {
        grid-column: span 2;
    }
    .review-card:nth-last-child(2) {
        grid-column: auto;
    }
}
@media (max-width: 640px) {
    .testimonials-modern {
        padding: 58px 0;
    }
    .testimonials-modern__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .testimonial-photo,
    .review-card:last-child {
        grid-column: auto;
    }
    .review-card,
    .review-card--wide {
        min-height: auto;
        padding: 24px;
    }
    .testimonial-photo {
        min-height: 230px;
    }
    .testimonials-modern__intro p,
    .review-card p {
        font-size: 15px;
    }
}

/* Contact form replacement for How We Work */
.contact-form-section {
    padding: 76px 0;
    background: linear-gradient(180deg, #fbfbfd 0%, #fff 100%);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.contact-form-copy h2 {
    max-width: 560px;
    margin-bottom: 18px;
    color: #07142b;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.4px;
}
.contact-form-copy p {
    max-width: 520px;
    color: #404456;
    font-size: 16px;
    line-height: 1.75;
}
.contact-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.contact-points div {
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(91,38,136,.09);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(28,17,47,.06);
}
.contact-points span {
    width: 32px;
    height: 32px;
    display: block;
    color: var(--purple);
    margin-bottom: 12px;
}
.contact-points strong,
.contact-points small {
    display: block;
}
.contact-points strong {
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}
.contact-points small {
    color: #606477;
    font-size: 12px;
}
.quote-form {
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(91,38,136,.10);
    border-radius: 18px;
    box-shadow: 0 22px 52px rgba(28,17,47,.10);
}
.quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.quote-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}
.quote-form input,
.quote-form textarea {
    width: 100%;
    border: 1px solid #ded8e8;
    border-radius: 10px;
    padding: 13px 14px;
    color: #111827;
    font: inherit;
    font-weight: 500;
    outline: none;
    background: #fbfafc;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.quote-form textarea {
    resize: vertical;
    min-height: 118px;
}
.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--purple);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91,38,136,.10);
}
.quote-form .btn {
    width: 100%;
    margin-top: 4px;
}
.form-alert {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}
.form-alert--success {
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
}
.form-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* Infinite brand marquee */
.brands {
    overflow: hidden;
}
.brand-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: brandMarquee 24s linear infinite;
    will-change: transform;
}
.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}
.brand-track .brand-logo {
    width: 150px;
    flex: 0 0 150px;
}
@keyframes brandMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 6px)); }
}
@media (max-width: 900px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 620px) {
    .contact-form-section {
        padding: 54px 0;
    }
    .contact-points,
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
    .quote-form {
        padding: 22px;
    }
    .brand-track .brand-logo {
        width: 132px;
        flex-basis: 132px;
    }
}

/* Top support sub-navbar */
.top-strip {
    background: #0d1628;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
.top-strip__inner {
    min-height: 26px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}
.top-strip span {
    color: var(--purple);
    margin-right: 7px;
}
.top-strip__contact {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-strip__contact a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.top-strip__social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}
.top-strip__social a {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.top-strip__social a:hover,
.top-strip__contact a:hover {
    color: #d9c2f0;
}
@media (max-width: 900px) {
    .top-strip__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        padding: 8px 0;
    }
    .top-strip__social {
        justify-content: center;
    }
}
@media (max-width: 560px) {
    .top-strip__contact {
        flex-direction: column;
        gap: 7px;
    }
    .top-strip__social {
        display: none;
    }
}

/* Header image logo */
.header-inner .brand--image {
    min-width: 250px;
    width: 250px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: inherit;
}
.header-inner .brand--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 760px) {
    .header-inner .brand--image {
        min-width: 190px;
        width: 190px;
        height: 52px;
    }
}
@media (max-width: 480px) {
    .header-inner .brand--image {
        min-width: 150px;
        width: 150px;
    }
}

/* Footer uploaded logo */
.footer-logo-link {
    display: inline-flex;
    width: 230px;
    max-width: 100%;
    margin-bottom: 18px;
}
.footer-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 640px) {
    .footer-logo-link {
        width: 210px;
    }
}

/* Product catalog and detail pages */
.catalog-page { background: #f5f2f8; }
.catalog-header { background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(91,38,136,.10); position: sticky; top: 0; z-index: 20; }
.catalog-nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.catalog-nav nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 800; }
.catalog-nav nav a.active, .catalog-nav nav a:hover { color: var(--purple); }
.catalog-hero { padding: 60px 0 32px; text-align: center; }
.catalog-hero h1 { max-width: 900px; margin: 0 auto 18px; color: #10142a; font-size: clamp(46px, 7vw, 92px); line-height: .95; letter-spacing: -3px; font-weight: 500; }
.catalog-hero p:last-child { max-width: 640px; margin: 0 auto; color: #55596a; line-height: 1.7; }
.catalog-section { padding: 18px 0 80px; }
/* Category icon-card filter grid */
.cat-filter-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.cat-filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px 18px;
    background: #fff;
    border: 1.5px solid rgba(91,38,136,.10);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(28,17,47,.06);
    text-align: center;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.cat-filter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6a3199, #3f1a6e);
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 0;
}
.cat-filter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(91,38,136,.15);
    border-color: var(--purple);
}
.cat-filter-card--active {
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(91,38,136,.22);
}
.cat-filter-card--active::before { opacity: 1; }
.cat-filter-card__icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(91,38,136,.12), rgba(91,38,136,.06));
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .25s ease;
}
.cat-filter-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--purple);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s ease;
}
.cat-filter-card--active .cat-filter-card__icon {
    background: rgba(255,255,255,.18);
}
.cat-filter-card--active .cat-filter-card__icon svg { stroke: #fff; }
.cat-filter-card__label {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    color: #1f2434;
    line-height: 1.25;
    transition: color .25s ease;
}
.cat-filter-card--active .cat-filter-card__label { color: #fff; }
.cat-filter-card:hover:not(.cat-filter-card--active) .cat-filter-card__label { color: var(--purple); }
.cat-filter-card__count {
    position: relative;
    z-index: 1;
    min-width: 26px;
    height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(91,38,136,.10);
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, color .25s ease;
}
.cat-filter-card--active .cat-filter-card__count {
    background: rgba(255,255,255,.22);
    color: #fff;
}
@media (max-width: 1100px) {
    .cat-filter-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 680px) {
    .cat-filter-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .cat-filter-card { padding: 16px 10px 14px; gap: 7px; border-radius: 12px; }
    .cat-filter-card__icon { width: 40px; height: 40px; }
    .cat-filter-card__icon svg { width: 18px; height: 18px; }
    .cat-filter-card__label { font-size: 10px; }
}
@media (max-width: 420px) {
    .cat-filter-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Search + sort toolbar */
.catalog-searchbar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid rgba(91,38,136,.12);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(28,17,47,.07);
    margin-bottom: 20px;
}
.catalog-searchbar__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.catalog-searchbar__input-wrap svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #9095a8;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.catalog-searchbar input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.catalog-searchbar input[type="search"]::placeholder { color: #9095a8; font-weight: 500; }
.catalog-searchbar select {
    border: 1.5px solid rgba(91,38,136,.14);
    border-radius: 10px;
    padding: 9px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #1f2434;
    background: #f9f7fc;
    outline: none;
    cursor: pointer;
    transition: border-color .2s ease;
}
.catalog-searchbar select:focus { border-color: var(--purple); }
.catalog-searchbar button {
    min-height: 42px;
    padding: 0 22px;
    background: linear-gradient(135deg, #6a3199, #3f1a6e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 10px 22px rgba(72,25,113,.20);
    white-space: nowrap;
}
.catalog-searchbar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(72,25,113,.26);
}
@media (max-width: 700px) {
    .catalog-searchbar { flex-wrap: wrap; gap: 10px; }
    .catalog-searchbar__input-wrap { min-width: 0; flex: 1 1 100%; order: -1; }
    .catalog-searchbar select { flex: 1; }
    .catalog-searchbar button { flex: 1; }
}
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 18px; }
.catalog-count { color: #777b89; font-size: 13px; margin-bottom: 16px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ded8e8; border-left: 1px solid #ded8e8; background: #fff; }
.catalog-card { min-height: 360px; border-right: 1px solid #ded8e8; border-bottom: 1px solid #ded8e8; background: #fbfaf7; display: flex; flex-direction: column; }
.catalog-card__visual { flex: 1; min-height: 220px; display: grid; place-items: center; background: radial-gradient(circle, #e8e0ef 0 38%, #f8f6fa 39% 100%); }
.catalog-card__visual span { width: 96px; height: 150px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(160deg, #6b3598, #2f164c); color: #fff; font-size: 30px; font-weight: 800; box-shadow: 0 24px 42px rgba(48,22,76,.22); }
.catalog-card__body { padding: 18px; }
.catalog-card__body small { color: var(--purple); font-weight: 800; font-size: 11px; text-transform: uppercase; }
.catalog-card__body h2 { margin: 8px 0; color: #161a2d; font-size: 17px; }
.catalog-card__body p { min-height: 62px; color: #55596a; font-size: 13px; line-height: 1.55; }
.catalog-card__meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-top: 12px; font-size: 12px; }
.catalog-card__meta strong { color: #111827; }
.catalog-card__meta span { color: var(--purple); font-weight: 800; }
.breadcrumb { padding: 28px 0 12px; display: flex; gap: 9px; color: #606477; font-size: 13px; font-weight: 700; }
.breadcrumb a { color: var(--purple); }
.detail-layout { display: grid; grid-template-columns: .95fr 1fr; gap: 38px; padding-bottom: 50px; }
.detail-visual { min-height: 520px; display: grid; place-items: center; border-radius: 22px; background: radial-gradient(circle, #e8e0ef 0 40%, #f8f6fa 41% 100%); }
.detail-visual span { width: 170px; height: 270px; border-radius: 30px; display: grid; place-items: center; background: linear-gradient(160deg, #6b3598, #2f164c); color: #fff; font-size: 58px; font-weight: 800; box-shadow: 0 26px 50px rgba(48,22,76,.24); }
.detail-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.detail-thumbs div { height: 96px; border-radius: 14px; background: #ebe6f1; }
.detail-info h1 { color: #111827; font-size: clamp(34px, 4vw, 58px); line-height: 1; margin: 6px 0 14px; }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.detail-rating span, .reviews-list .stars { color: var(--purple); letter-spacing: 2px; }
.detail-summary { color: #404456; line-height: 1.75; margin-bottom: 18px; }
.detail-panel { border: 1px solid #ded8e8; border-radius: 16px; background: #fff; padding: 20px; margin-bottom: 16px; }
.detail-panel h2 { font-size: 16px; margin-bottom: 14px; }
.size-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.size-pills span { padding: 10px 14px; border-radius: 999px; background: #f0e9f7; color: var(--purple); font-size: 12px; font-weight: 800; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.feature-list li { list-style: none; color: #404456; font-size: 13px; }
.feature-list li::before { content: '*'; color: var(--purple); margin-right: 8px; }
.detail-actions { display: flex; gap: 12px; margin-top: 20px; }
.reviews-section { display: grid; grid-template-columns: 260px 1fr; gap: 34px; padding: 34px 0 86px; }
.reviews-score strong { font-size: 96px; line-height: .9; color: #080d1f; }
.reviews-score span { font-size: 24px; color: #777; }
.reviews-score small { display: block; color: #777; margin-top: 12px; }
.reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.reviews-list article { background: #fff; border: 1px solid #ded8e8; border-radius: 16px; padding: 22px; }
.reviews-list h3 { font-size: 15px; margin: 10px 0 2px; }
.reviews-list small { color: #777b89; }
.reviews-list p { color: #404456; line-height: 1.65; margin-top: 14px; }
@media (max-width: 1000px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } .catalog-toolbar, .detail-layout, .reviews-section { grid-template-columns: 1fr; display: grid; } .catalog-actions { flex-wrap: wrap; } }
@media (max-width: 700px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } .catalog-hero h1 { font-size: 48px; } .detail-actions, .reviews-list { grid-template-columns: 1fr; display: grid; } .feature-list { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .catalog-grid { grid-template-columns: 1fr; } .catalog-nav { flex-direction: column; padding: 16px 0; } .catalog-nav nav { gap: 18px; } .detail-visual { min-height: 360px; } }
