/* ============================================================
   BrTeam.pro — softened terminal-flavoured studio site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  /* surfaces — soft, slightly warm dark */
  --bg0: #0c1117;
  --bg1: #10151c;
  --bg2: #161c25;
  --bg3: #1b222c;
  --bg4: #222a35;
  --border: rgba(255,255,255,.07);
  --border-2: rgba(255,255,255,.11);
  --chrome-bg: rgba(14,20,27,.9);
  --shadow: 0 30px 60px -34px rgba(0,0,0,.7);

  /* text */
  --text: #e7ecf2;
  --muted: #9aa6b2;
  --dim: #6b7682;

  /* accents — muted, harmonious */
  --green: #2f9c75;
  --green-2: #26835f;
  --green-soft: rgba(47,156,117,.15);
  --blue: #82b0db;
  --purple: #b29fd4;
  --orange: #dca083;
  --yellow: #cbac74;
  --red: #df9088;
  --cyan: #82c2c8;

  /* syntax (terminal) */
  --syn-com: #6b7682;
  --syn-str: #a6c6d6;
  --syn-key: #d79a93;

  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
  --titlebar-h: 34px;
  --nav-h: 56px;
  --status-h: 30px;
  --glow-green: 0 0 0 1px rgba(47,156,117,.32), 0 0 26px -10px rgba(47,156,117,.6);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--titlebar-h) + var(--nav-h) + 16px); }

body {
  font-family: var(--sans);
  background: var(--bg1);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--status-h);
}

/* very subtle backdrop glow, no hard grid */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(47,156,117,.07), transparent 70%),
    radial-gradient(700px 500px at 0% 0%, rgba(130,176,219,.05), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.013) 0 1px, transparent 1px 3px);
  pointer-events: none; z-index: 0;
}

a { color: inherit; text-decoration: none; }
::selection { background: rgba(47,156,117,.28); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; position: relative; z-index: 1; }
.mono { font-family: var(--mono); }

/* ============================================================
   Header — clean nav, plain language tabs
   ============================================================ */
.chrome {
  position: sticky; top: 0; z-index: 100;
  background: var(--chrome-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.titlebar {
  height: var(--titlebar-h);
  display: flex; align-items: center; gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg0);
}
.titlebar .lights span { width: 11px; height: 11px; }
.tb-name { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.tb-name span { color: var(--dim); }
.tb-right { margin-left: auto; display: flex; align-items: center; gap: 16px; font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.tb-online { display: inline-flex; align-items: center; gap: 7px; }
.tb-online i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.tabbar {
  height: var(--nav-h);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 0 26px;
}
.logo-tab {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-weight: 600; font-size: 15px;
  white-space: nowrap; margin-right: 14px;
}
.logo-mark {
  width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #0a1a10; font-weight: 700; font-size: 14px;
}
.logo-tab .pro { color: var(--green); }

.navlinks { display: flex; align-items: center; gap: 4px; }
.tab {
  font-family: var(--sans); font-size: 14.5px; color: var(--muted);
  background: none; border: none; cursor: pointer;
  padding: 8px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.tab:hover { color: var(--text); background: var(--bg2); }
.tab.active { color: var(--green); }

.spacer { flex: 1; }

.lang-switch {
  display: flex; gap: 2px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; margin-right: 6px;
}
.lang-btn {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--dim); background: none; border: none; cursor: pointer;
  padding: 5px 9px; border-radius: 6px; transition: color .15s, background .15s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.on { color: var(--green); background: var(--green-soft); }

.cta-tab {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: #0a1a10; background: var(--green); border: none;
  padding: 9px 16px; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: box-shadow .18s, background .18s, transform .12s;
}
.cta-tab:hover { background: #7cc093; box-shadow: var(--glow-green); }
.cta-tab:active { transform: translateY(1px); }

/* ============================================================
   Sections — shared
   ============================================================ */
section { position: relative; z-index: 1; padding: 90px 0; }
.section-head { margin-bottom: 44px; max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  margin-bottom: 16px; letter-spacing: .01em;
}
.eyebrow .cmd { color: var(--green); font-weight: 600; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px -1px var(--green); }
.section-head h2 {
  font-size: clamp(27px, 3.6vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14; max-width: 20ch;
}
.section-head p { color: var(--muted); margin-top: 15px; font-size: 16.5px; }

/* ============================================================
   Hero
   ============================================================ */
#hero { padding-top: 64px; padding-bottom: 78px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 52px; align-items: center; }
.hero-left { min-width: 0; }
.hero-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--border); background: var(--bg2);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 24px;
}
.hero-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; }
.hero-status .pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--green); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0%{transform:scale(.6);opacity:.8} 100%{transform:scale(1.9);opacity:0} }

.hero-left h1 {
  font-size: clamp(36px, 5vw, 60px); line-height: 1.06;
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-left h1 .hl { color: var(--green); }
.hero-rotate { display: block; white-space: nowrap; }
.hero-left h1 .cursor { color: var(--green); font-weight: 400; animation: blink 1.1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-sub { font-size: 17px; color: var(--muted); max-width: 48ch; margin-bottom: 30px; }

.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.btn {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: 9px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s, box-shadow .18s, background .18s, border-color .18s, color .18s;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #0a1a10; }
.btn-primary:hover { box-shadow: var(--glow-green); background: #7cc093; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn .arr { transition: transform .15s; }
.btn:hover .arr { transform: translateX(3px); }

.hero-metrics { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.metric .n { font-family: var(--mono); font-size: 27px; font-weight: 600; color: var(--text); line-height: 1; }
.metric .n .u { color: var(--green); }
.metric .l { font-size: 13px; color: var(--dim); margin-top: 8px; }

.hero-right { min-width: 0; }

/* terminal window (the one playful frame we keep) */
.window {
  background: var(--bg1); border: 1px solid var(--border-2);
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow);
}
.win-bar { height: 38px; display: flex; align-items: center; gap: 13px; padding: 0 14px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.lights { display: flex; gap: 8px; }
.lights span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.lights .r { background: #e0938b; } .lights .y { background: #d8be84; } .lights .g { background: var(--green); }
.win-bar .name { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.win-bar .name .ext { color: var(--muted); }

.term { background: #0b0f15; font-family: var(--mono); font-size: 13px; }
.window.term { border-color: rgba(255,255,255,.1); }
.term .win-bar { background: #11161e; border-bottom: 1px solid rgba(255,255,255,.06); }
.term .win-bar .name { color: #6b7682; }
.term .win-bar .name .ext { color: #9aa6b2; }
.term-body { padding: 16px; min-height: 280px; }
.term-line { white-space: pre-wrap; word-break: break-word; line-height: 1.7; }
.term .prompt { color: var(--green); }
.term .path { color: var(--blue); }
.term .out { color: var(--muted); }
.term .ok { color: var(--green); }
.term .warn { color: var(--yellow); }
.term .accent { color: var(--cyan); }
.term-cursor { display:inline-block; width:8px; height:15px; background: var(--green); vertical-align: -2px; animation: blink 1.1s step-end infinite; }
.term-input-row { display: flex; align-items: center; gap: 7px; }
.term-input-row .prompt { flex-shrink: 0; }
.term-input { flex: 1; background: transparent; border: none; outline: none; color: var(--text); font-family: var(--mono); font-size: 13px; caret-color: var(--green); }
.term-hint { color: var(--dim); font-size: 11.5px; margin-top: 8px; }

/* ============================================================
   Services — borderless-feel cards
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 24px 28px;
  transition: border-color .2s, transform .2s, background .2s;
}
.svc-card:hover { border-color: var(--border-2); background: var(--bg3); transform: translateY(-3px); }
.svc-ico {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--green-soft); margin-bottom: 18px;
  font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--green);
}
.svc-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
.svc-card p { color: var(--muted); font-size: 15px; }

/* ============================================================
   Stack — clean rows, no window
   ============================================================ */
.stack-list { display: flex; flex-direction: column; }
.stack-cmd { font-family: var(--mono); font-size: 13.5px; color: var(--green); margin-bottom: 16px; }
.stack-cmd .path { color: var(--blue); }
.stack-cmd .muted { color: var(--dim); }
.stack-row { display: grid; grid-template-columns: 180px 1fr; gap: 22px; padding: 20px 0; border-top: 1px solid var(--border); align-items: center; }
.stack-row:first-child { border-top: none; }
.stack-cat { font-family: var(--mono); font-size: 14px; color: var(--text); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  background: var(--bg2); border: 1px solid var(--border); white-space: nowrap;
  padding: 6px 13px; border-radius: 8px; transition: border-color .15s, color .15s;
}
.chip:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   Work — simpler cards
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.work-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s, transform .2s, background .2s; display: flex; flex-direction: column; }
.work-card:hover { border-color: var(--border-2); background: var(--bg3); transform: translateY(-3px); }
.work-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 20px; background: var(--bg3); border-bottom: 1px solid var(--border); }
.work-repo { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.work-repo .sl { color: var(--green); }
.work-tag { font-family: var(--mono); font-size: 11px; color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.work-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.work-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
.work-body p { color: var(--muted); font-size: 15px; flex: 1; }
.work-metric { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13.5px; color: var(--text); font-weight: 500; }
.work-metric .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px -1px var(--green); }
.work-note { font-family: var(--mono); font-size: 12.5px; color: var(--dim); margin-top: 22px; text-align: center; }

/* ============================================================
   Process — simple numbered steps
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 4px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--border); }
.step:first-child { border-top: none; }
.step-num {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--green);
  background: var(--green-soft);
}
.step-head { display: flex; align-items: baseline; gap: 16px; justify-content: space-between; }
.step-head h3 { font-size: 19px; font-weight: 600; letter-spacing: -.01em; min-width: 0; }
.step-stage { font-family: var(--mono); font-size: 12px; color: var(--blue); font-weight: 400; margin-left: 8px; }
.step-by { font-family: var(--mono); font-size: 12.5px; color: var(--dim); white-space: nowrap; flex-shrink: 0; }
.step-body p { color: var(--muted); font-size: 15px; margin-top: 6px; max-width: 64ch; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-items: start; }
.contact-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 26px 26px 28px; }
.card-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 20px; font-family: var(--mono); }
.fld { margin-bottom: 15px; }
.fld label { display: block; font-family: var(--mono); font-size: 13px; color: var(--text); margin-bottom: 7px; }
.fld label .c { color: var(--dim); font-weight: 400; }
.fld input, .fld textarea {
  width: 100%; background: var(--bg1); border: 1px solid var(--border-2);
  border-radius: 9px; padding: 12px 14px; color: var(--text);
  font-family: var(--sans); font-size: 14.5px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fld input:focus, .fld textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.fld textarea { resize: vertical; min-height: 96px; }
.form-out { font-family: var(--mono); font-size: 13px; margin-top: 14px; min-height: 20px; }
.form-out .ok { color: var(--green); }

.contact-info { display: flex; flex-direction: column; }
.ci-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--border); transition: color .15s; }
.contact-info .ci-row:first-of-type { border-top: none; }
.ci-row .ci-k { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.ci-row .ci-v { font-family: var(--mono); font-size: 13.5px; color: var(--text); }
a.ci-row:hover .ci-v { color: var(--green); }
.contact-chips { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.contact-chips a { font-family: var(--mono); font-size: 13px; color: var(--text); border: 1px solid var(--border-2); padding: 9px 15px; border-radius: 9px; transition: border-color .15s, color .15s; }
.contact-chips a:hover { border-color: var(--green); color: var(--green); }
.ci-note { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-top: 18px; }

/* ============================================================
   Trust — premium logo wall (uniform plates)
   ============================================================ */
.trust { padding: 54px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.trust-label { font-family: var(--mono); font-size: 12.5px; color: var(--dim); text-align: center; margin-bottom: 30px; }
.trust-logos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; justify-content: center;
  height: 78px; padding: 0 24px;
  background: linear-gradient(180deg, #fbfcfd, #eef1f5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: default;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 14px 30px -20px rgba(0,0,0,.8);
}
.logo:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 20px 38px -18px rgba(0,0,0,.85), 0 0 0 1px rgba(47,156,117,.3); }
.logo-img {
  width: auto; height: auto;
  max-height: 26px; max-width: 124px;
  object-fit: contain; display: block;
}
.logo-word { font-family: var(--sans); font-size: 18px; font-weight: 700; letter-spacing: -.02em; color: #1a2331; line-height: 1; white-space: nowrap; }

/* ============================================================
   Testimonials
   ============================================================ */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tm-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; }
.tm-quote { font-size: 16px; color: var(--text); line-height: 1.6; flex: 1; }
.tm-quote::before { content: "> "; color: var(--green); font-family: var(--mono); }
.tm-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.tm-ava { width: 38px; height: 38px; border-radius: 9px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 15px; }
.tm-name { font-size: 14.5px; font-weight: 600; color: var(--text); }
.tm-role { font-family: var(--mono); font-size: 12px; color: var(--dim); }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--text); display: flex; align-items: center; gap: 16px; padding: 22px 4px; font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.faq-q .qmark { font-family: var(--mono); font-size: 13px; color: var(--green); flex-shrink: 0; }
.faq-q .plus { margin-left: auto; flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .25s; color: var(--muted); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .plus::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 8px; width: 2px; transition: opacity .25s; }
.faq-item.open .faq-q .plus { transform: rotate(90deg); color: var(--green); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { color: var(--muted); font-size: 15.5px; padding: 0 40px 24px 38px; max-width: 70ch; }

/* ============================================================
   Status bar + footer
   ============================================================ */
.statusbar {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--status-h);
  background: var(--bg0); border-top: 1px solid var(--border);
  display: flex; align-items: center;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  z-index: 90; padding: 0 8px;
}
.statusbar .si { display: flex; align-items: center; gap: 7px; padding: 0 12px; }
.statusbar .si.hl { color: var(--green); }
.statusbar .sdot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.statusbar .sp { flex: 1; }

.foot { border-top: 1px solid var(--border); padding: 30px 0 58px; position: relative; z-index: 1; }
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot .copy { font-family: var(--mono); font-size: 12.5px; color: var(--dim); }
.foot .copy b { color: var(--muted); font-weight: 500; }
.foot-links { display: flex; gap: 20px; font-size: 14px; color: var(--muted); }
.foot-links a { cursor: pointer; }
.foot-links a:hover { color: var(--green); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; }
}
@media (max-width: 680px) {
  .wrap, .tabbar { padding-left: 18px; padding-right: 18px; }
  section { padding: 66px 0; }
  .svc-grid, .work-grid { grid-template-columns: 1fr; }
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
  .faq-a p { padding-left: 4px; padding-right: 4px; }
  .stack-row { grid-template-columns: 1fr; gap: 10px; }
  .hero-metrics { gap: 24px; }
  .foot-grid { flex-direction: column; align-items: flex-start; }
  .cta-tab { display: none; }
}
