/* ============================================================
   BurTech Solution — components (original layout).
   ============================================================ */

/* ============================ HEADER ============================ */
.header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px); background: rgba(7,8,12,0.66);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 26px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo svg { width: 38px; height: 38px; }
.logo-img { height: 34px; width: auto; display: block; }
.logo-text { font-family: var(--f-display); font-weight: 700; font-size: 18px; color: var(--fg); letter-spacing: -0.02em; line-height: 1; }
.logo-text small { display: block; font-family: var(--f-mono); font-weight: 500; font-size: 9.5px; letter-spacing: 0.34em; color: var(--fg-3); margin-top: 3px; }
.nav { display: flex; gap: 2px; margin-left: auto; }
.nav a { color: var(--fg-3); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: var(--r-sm); transition: color .15s, background .15s; }
.nav a:hover, .nav a.active { color: var(--fg); background: rgba(255,255,255,0.05); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { width: 18px; height: 2px; border-radius: 2px; background: var(--fg); transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile { position: fixed; inset: 72px 0 0; z-index: 55; display: none; flex-direction: column; gap: 6px; padding: 26px 28px 40px; background: rgba(7,8,12,0.98); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform .34s var(--ease); overflow-y: auto; }
.mobile.open { transform: none; }
.mobile a.m-link { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--fg-2); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile a.m-link:hover { color: var(--blue-bright); }
.mobile .m-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 22px; }
.mobile .m-foot a.mono { color: var(--fg-2); text-decoration: none; }

/* ============================ HERO ============================ */
.hero { position: relative; padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 24px 0 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--f-display); font-size: 22px; color: var(--fg); font-weight: 700; letter-spacing: -0.02em; }
.hero-trust .ht span { font-size: 13px; color: var(--fg-3); }
.hero-trust .sep { width: 1px; height: 32px; background: var(--line-2); }

/* hero visual — orbit / console panel */
.hero-visual { position: relative; }
.console { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--surface), var(--ink-2)); box-shadow: var(--shadow); }
.console-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 11.5px; color: var(--fg-4); }
.console-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.console-bar .t { margin-left: 8px; }
.console-body { margin: 0; padding: 18px 20px; font-family: var(--f-mono); font-size: 12.5px; line-height: 1.75; color: var(--fg-2); white-space: pre-wrap; }
.console-body .k { color: var(--blue-bright); } .console-body .s { color: var(--cyan); } .console-body .c { color: var(--fg-4); } .console-body .f { color: #fff; }
.console-foot { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; color: var(--fg-4); }
.chip-mini { padding: 3px 9px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: rgba(255,255,255,0.02); }
.chip-mini.ok { color: var(--cyan); border-color: rgba(34,214,224,0.4); background: rgba(34,214,224,0.07); }
.hero-float { position: absolute; right: -10px; bottom: -26px; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: var(--r-md); background: rgba(20,24,38,0.9); backdrop-filter: blur(14px); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.hero-float .fic { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); color: #06121f; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.hero-float b { font-family: var(--f-mono); font-size: 12.5px; color: var(--fg); }
.hero-float span { display: block; font-size: 11px; color: var(--fg-4); }

/* ============================ MARQUEE ============================ */
.marquee-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.012); padding: 22px 0; overflow: hidden; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; align-items: center; animation: scroll-x 40s linear infinite; padding-right: 40px; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--f-mono); font-size: 15px; color: var(--fg-3); white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================ SERVICES ============================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc { padding: 26px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 12px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.svc:hover { transform: translateY(-4px); border-color: var(--line-2); background: linear-gradient(180deg, rgba(79,125,255,0.06), rgba(255,255,255,0.01)); }
.svc-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--cyan); background: rgba(34,214,224,0.08); border: 1px solid rgba(34,214,224,0.22); }
.svc h3 { font-size: 19px; font-weight: 600; }
.svc p { color: var(--fg-3); font-size: 14.5px; line-height: 1.55; margin: 0; flex: 1; }
.svc .tag { font-family: var(--f-mono); font-size: 11px; color: var(--fg-4); letter-spacing: 0.02em; }
.svc.feat { grid-column: span 2; background: linear-gradient(135deg, rgba(79,125,255,0.12), rgba(34,214,224,0.05)); border-color: rgba(79,125,255,0.3); }
.svc.feat .svc-ic { background: var(--grad); color: #06121f; border-color: transparent; }
.svc.feat h3 { font-size: 24px; font-weight: 700; }
.svc-mini { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-mini span { font-family: var(--f-mono); font-size: 11px; color: var(--fg-2); padding: 4px 9px; border-radius: var(--r-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--line); }

/* ============================ STATS / VALUE BAND ============================ */
.value { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.value-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.vp { display: flex; gap: 14px; align-items: flex-start; }
.vp-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue-bright); background: rgba(79,125,255,0.1); border: 1px solid rgba(79,125,255,0.24); }
.vp b { font-family: var(--f-display); font-weight: 600; color: var(--fg); font-size: 16.5px; }
.vp p { margin: 3px 0 0; font-size: 14.5px; color: var(--fg-3); }
.value-card { padding: 30px; border-radius: var(--r-xl); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.metric .n { font-family: var(--f-display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); letter-spacing: -0.04em; color: var(--fg); line-height: 1; }
.metric .n.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric span { display: block; margin-top: 8px; font-size: 13px; color: var(--fg-3); }

/* ============================ PORTFOLIO ============================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work { border-radius: var(--r-lg); overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.work:hover { transform: translateY(-4px); border-color: var(--blue); }
.work .thumb { position: relative; }
.work .year { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--f-mono); font-size: 11px; color: var(--fg); padding: 4px 10px; border-radius: var(--r-pill); background: rgba(7,8,12,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line-2); }
.work .meta { padding: 18px 20px 20px; }
.work .meta .cat { font-family: var(--f-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.04em; }
.work .meta h3 { font-size: 18px; font-weight: 600; margin: 6px 0 7px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.work .meta p { font-size: 14px; color: var(--fg-3); margin: 0; line-height: 1.5; }

/* ============================ CASE STUDIES ============================ */
.cases { display: flex; flex-direction: column; gap: 20px; }
.case { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; padding: 36px; border-radius: var(--r-xl); }
.case:nth-child(even) .case-media { order: -1; }
.case .ct { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; }
.case .ct .tag { padding: 3px 10px; border-radius: var(--r-pill); border: 1px solid var(--line-2); color: var(--fg-4); }
.case h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; margin: 16px 0 12px; letter-spacing: -0.025em; }
.case > div > p { color: var(--fg-3); font-size: 15.5px; max-width: 46ch; }
.case-metrics { display: flex; gap: 30px; flex-wrap: wrap; margin: 22px 0; }
.case-metrics .n { font-family: var(--f-display); font-weight: 800; font-size: 30px; color: var(--fg); letter-spacing: -0.03em; line-height: 1; }
.case-metrics .n.hi { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metrics span { display: block; margin-top: 7px; font-size: 12px; color: var(--fg-4); max-width: 15ch; }
.case-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.case-stack span { font-family: var(--f-mono); font-size: 11px; color: var(--fg-3); padding: 4px 10px; border-radius: var(--r-sm); border: 1px solid var(--line); }
.case-media .media-slot { height: 320px; }

/* ============================ REVIEWS ============================ */
.rev-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; flex-wrap: wrap; margin-bottom: 40px; }
.g-summary { display: flex; align-items: center; gap: 22px; padding: 20px 26px; border-radius: var(--r-lg); }
.g-summary .num { font-family: var(--f-display); font-weight: 800; font-size: 52px; letter-spacing: -0.04em; color: var(--fg); line-height: 1; }
.g-summary .g-sub { font-size: 12.5px; color: var(--fg-3); margin-top: 6px; }
.stars { color: var(--star); letter-spacing: 2px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev { padding: 24px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 14px; transition: transform .2s var(--ease), border-color .2s; }
.rev:hover { transform: translateY(-3px); border-color: var(--line-2); }
.rev-top { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 15px; object-fit: cover; }
.rev-id { flex: 1; min-width: 0; }
.rev-id b { font-family: var(--f-display); font-weight: 600; color: var(--fg); font-size: 15.5px; display: block; }
.rev-id span { font-size: 12px; color: var(--fg-4); }
.rev p { margin: 0; font-size: 14.5px; color: var(--fg-2); line-height: 1.6; }

/* ============================ PROCESS ============================ */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.step { padding: 26px; border-radius: var(--r-lg); display: flex; gap: 18px; align-items: flex-start; }
.step .no { font-family: var(--f-mono); font-size: 13px; color: var(--cyan); padding-top: 4px; }
.step h3 { font-size: 20px; font-weight: 600; margin-bottom: 7px; }
.step p { margin: 0; color: var(--fg-3); font-size: 14.5px; }
.step .meta { font-family: var(--f-mono); font-size: 11px; color: var(--fg-4); margin-top: 12px; }

/* ============================ PRICING ============================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { padding: 30px; border-radius: var(--r-xl); display: flex; flex-direction: column; gap: 14px; }
.price.feat { border-color: rgba(79,125,255,0.4); background: linear-gradient(180deg, rgba(79,125,255,0.1), rgba(255,255,255,0.01)); }
.price .ribbon { align-self: flex-start; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; color: #06121f; background: var(--grad); padding: 4px 11px; border-radius: var(--r-pill); }
.price .p-name { font-family: var(--f-mono); font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.16em; }
.price .p-tier { font-family: var(--f-display); font-weight: 700; font-size: 27px; letter-spacing: -0.03em; color: var(--fg); }
.price .p-note { font-family: var(--f-mono); font-size: 12px; color: var(--cyan); }
.price .p-desc { color: var(--fg-3); font-size: 14.5px; }
.price ul { list-style: none; margin: 6px 0; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--fg-2); }
.price li .ic { color: var(--cyan); font-size: 16px; flex-shrink: 0; }
.price .btn { justify-content: center; }
.price-note { font-family: var(--f-mono); font-size: 12px; color: var(--fg-4); margin-top: 26px; }

/* ============================ FAQ ============================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; font-family: var(--f-display); font-size: 19px; font-weight: 500; color: var(--fg); transition: color .15s; }
.faq-q:hover { color: var(--blue-bright); }
.faq-q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--fg-3); transition: transform .3s var(--ease), background .2s, color .2s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--grad); color: #06121f; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { color: var(--fg-3); font-size: 15.5px; line-height: 1.6; margin: 0 0 22px; max-width: 60ch; }

/* ============================ CONTACT ============================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list .ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--cyan); background: rgba(34,214,224,0.08); border: 1px solid rgba(34,214,224,0.2); }
.contact-list .k { font-family: var(--f-mono); font-size: 11px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list a, .contact-list .v { color: var(--fg); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--cyan); }
.contact-rating { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--r-md); border: 1px solid var(--line); background: rgba(255,255,255,0.02); font-size: 13.5px; color: var(--fg-2); }
.form { padding: 30px; border-radius: var(--r-xl); }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field > span { font-family: var(--f-mono); font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; }
.field input, .field textarea, .field select { font-family: var(--f-body); font-size: 15px; color: var(--fg); background: rgba(7,8,12,0.6); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 12px 14px; transition: border-color .15s, box-shadow .15s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,125,255,0.18); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button { font-family: var(--f-body); font-size: 13.5px; color: var(--fg-2); background: rgba(7,8,12,0.6); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 14px; cursor: pointer; transition: all .15s var(--ease); }
.chips button:hover { color: var(--fg); border-color: var(--blue); }
.chips button.on { background: var(--grad); color: #06121f; border-color: transparent; font-weight: 600; }
.form-note { font-family: var(--f-mono); font-size: 11.5px; color: var(--fg-4); text-align: center; margin: 4px 0 0; }
.form-success { text-align: center; padding: 32px 10px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); color: #06121f; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 0 0 8px rgba(79,125,255,0.14); }
.form-success h3 { font-size: 23px; }
.form-success p { color: var(--fg-3); max-width: 38ch; margin: 0; }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; background: rgba(255,255,255,0.012); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.footer-brand p { color: var(--fg-3); font-size: 14px; max-width: 340px; margin: 16px 0; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: center; color: var(--fg-2); transition: transform .2s var(--ease), color .2s, border-color .2s, background .2s; }
.socials a:hover { transform: translateY(-3px); color: #06121f; background: var(--grad); border-color: transparent; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-cols h4 { font-family: var(--f-mono); font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 14px; }
.footer-cols a { display: block; color: var(--fg-2); text-decoration: none; font-size: 14px; padding: 6px 0; transition: color .15s; }
.footer-cols a:hover { color: var(--fg); }
.footer-meta { font-family: var(--f-mono); font-size: 11px; color: var(--fg-4); letter-spacing: 0.04em; margin-top: 28px; }

/* ============================ MEDIA SLOTS / EMPTY / SKELETON ============================ */
.media-slot { position: relative; width: 100%; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); background: radial-gradient(80% 80% at 50% 0%, rgba(79,125,255,0.12), transparent 70%), var(--surface-2); }
.media-slot img { width: 100%; height: 100%; object-fit: cover; }
.media-slot .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px; font-family: var(--f-mono); font-size: 12px; color: var(--fg-4); }
.media-slot .ph .ic { font-size: 24px; color: var(--blue-bright); }
.work .thumb .media-slot { height: 200px; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.empty { border: 1px dashed var(--line-2); border-radius: var(--r-xl); padding: 52px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty .ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--cyan); background: rgba(34,214,224,0.08); border: 1px solid rgba(34,214,224,0.2); }
.empty h3 { font-size: 21px; }
.empty p { color: var(--fg-3); max-width: 46ch; margin: 0; }
.is-loading { min-height: 160px; }
[hidden] { display: none !important; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; }
  .mobile { display: flex; }
  .header-cta .btn-ghost { display: none; }
  .svc-grid, .work-grid, .rev-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .svc.feat { grid-column: span 2; }
}
@media (max-width: 880px) {
  .hero-grid, .value, .case, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .case:nth-child(even) .case-media { order: 0; }
  .steps, .price-grid, .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .svc-grid, .work-grid, .rev-grid, .price-grid, .steps, .value-card, form .row { grid-template-columns: 1fr; }
  .svc.feat { grid-column: span 1; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
